home *** CD-ROM | disk | FTP | other *** search
- function hp1()
- {
- history.go( +1 );
- }
-
- function hm1()
- {
- history.go( -1 );
- }
-
- function bon()
- {
- source = event.srcElement
-
- while( source.tagName != "TD" )
- source=source.parentElement
-
- if( source.style.borderTop != 'solid #2E485A 1px' )
- {
- source.style.borderTop = 'solid #2E485A 1px'
- source.style.borderLeft = 'solid #2E485A 1px'
- source.style.borderRight = 'solid #2E485A 1px'
- source.style.borderBottom = 'solid #2E485A 1px'
- }
- }
-
- function boff()
- {
- if( event.toElement != source )
- {
- source.style.borderTop = 'solid #e0e0e0 1px'
- source.style.borderLeft = 'solid #e0e0e0 1px'
- source.style.borderRight = 'solid #e0e0e0 1px'
- source.style.borderBottom = 'solid #e0e0e0 1px'
- }
- }
-
- function writeTime()
- {
- var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
- var wday = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
- var date = new Date();
- var day = date.getDate();
- var month = date.getMonth();
- var yy = date.getYear();
- var year = ( yy < 1000 ) ? yy + 1900 : yy;
-
- document.write( wday[date.getDay()] + ", " + months[month] + " " + day + ", " + year + " " );
- }
-
- function setASS( title )
- {
- var i, a, main;
-
- for( i = 0; ( a = document.getElementsByTagName( "link" )[ i ] ); i++ )
- {
- if( a.getAttribute( "rel" ).indexOf( "style" ) != -1 && a.getAttribute( "title" ) )
- {
- a.disabled = true;
-
- if( a.getAttribute( "title" ) == title )
- a.disabled = false;
- }
- }
- }
-
- function getASS()
- {
- var i, a;
-
- for( i = 0; ( a = document.getElementsByTagName( "link" )[ i ] ); i++ )
- {
- if( a.getAttribute( "rel" ).indexOf( "style" ) != -1 && a.getAttribute( "title" ) && !a.disabled )
- return a.getAttribute("title");
- }
-
- return null;
- }
-
- function getPSS()
- {
- var i, a;
- for( i = 0; ( a = document.getElementsByTagName( "link" )[ i ] ); i++ )
- {
- if( a.getAttribute( "rel" ).indexOf( "style" ) != -1 &&
- a.getAttribute( "rel" ).indexOf( "alt" ) == -1 &&
- a.getAttribute( "title" ) )
- return a.getAttribute("title");
- }
-
- return null;
- }
-
- function createCookie(name,value,days)
- {
- if( days )
- {
- var date = new Date();
-
- date.setTime( date.getTime() + ( days * 24 * 60 * 60 * 1000 ) );
-
- var expires = ";expires=" + date.toGMTString();
- }
- else
- expires = "";
-
- document.cookie = name + "=" + value + expires + "; path=/";
- }
-
- function readCookie( name )
- {
- var nameEQ = name + "=";
- var ca = document.cookie.split( ';' );
-
- for( var i = 0; i < ca.length; i++ )
- {
- var c = ca[ i ];
-
- while( c.charAt(0) == ' ' )
- c = c.substring( 1, c.length );
-
- if( c.indexOf( nameEQ ) == 0 )
- return c.substring( nameEQ.length, c.length );
- }
-
- return null;
- }
-
- var cookie = readCookie( "style" );
- var title = cookie ? cookie : getPSS();
-
- setASS(title);
-
- window.onload = function(e)
- {
- var cookie = readCookie( "style" );
- var title = cookie ? cookie : getPSS();
-
- setASS( title );
- }
-
- window.onunload = function(e)
- {
- var title = getASS();
-
- createCookie( "style", title, 365 );
- }
-